Crate antidote [] [src]

Mutex and RwLock types that do not poison themselves.

These types expose identical APIs to the standard library Mutex and RwLock except that they do not return PoisonErrors.

Structs

Mutex

Like std::sync::Mutex except that it does not poison itself.

MutexGuard

Like std::sync::MutexGuard.

RwLock

Like std::sync::RwLock except that it does not poison itself.

RwLockReadGuard

Like std::sync::RwLockReadGuard.

RwLockWriteGuard

Like std::sync::RwLockWriteGuard.

TryLockError

Like std::sync::TryLockError.

Type Definitions

TryLockResult

Like std::sync::TryLockResult.